Set the proper css class when getting attributes.
authorPaolo Borelli <pborelli@gnome.org>
Mon, 10 Jan 2011 20:34:08 +0000 (21:34 +0100)
committerPaolo Borelli <pborelli@gnome.org>
Mon, 10 Jan 2011 20:58:29 +0000 (21:58 +0100)
gtk/gtktextview.c

index 8152d9820237bf9a5d5b393f8c328d80e269b6b3..a2fbaac1f65524853515a468ad12a2df423a78b1 100644 (file)
@@ -6524,6 +6524,9 @@ gtk_text_view_set_attributes_from_style (GtkTextView        *text_view,
   context = gtk_widget_get_style_context (GTK_WIDGET (text_view));
   state = gtk_widget_get_state_flags (GTK_WIDGET (text_view));
 
+  gtk_style_context_save (context);
+  gtk_style_context_add_class (context, GTK_STYLE_CLASS_VIEW);
+
   gtk_style_context_get_background_color (context, state, &bg_color);
   gtk_style_context_get_color (context, state, &fg_color);
 
@@ -6539,6 +6542,8 @@ gtk_text_view_set_attributes_from_style (GtkTextView        *text_view,
     pango_font_description_free (values->font);
 
   values->font = pango_font_description_copy (gtk_style_context_get_font (context, state));
+
+  gtk_style_context_restore (context);
 }
 
 static void